home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / lfs / lfsDescInt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-19  |  1.2 KB  |  38 lines

  1. /*
  2.  * lfsDescInt.h --
  3.  *
  4.  *    Declarations of data structures for file descriptors internal to 
  5.  *    a LFS file system.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/lfs/lfsDescInt.h,v 1.3 92/09/03 18:13:24 shirriff Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _LFSDESCINT
  20. #define _LFSDESCINT
  21.  
  22. #include <fsioFile.h>
  23.  
  24. /* constants */
  25.  
  26. /* procedures */
  27.  
  28. extern void LfsDescCacheInit _ARGS_((struct Lfs *lfsPtr));
  29. extern void LfsDescCacheDestory _ARGS_((struct Lfs *lfsPtr));
  30. extern ClientData LfsDescCacheBlockInit _ARGS_((struct Lfs *lfsPtr, 
  31.         LfsDiskAddr diskBlockAddr, 
  32.         Boolean cantBlock, char **blockStartPtr));
  33. extern void LfsDescCacheBlockRelease _ARGS_((struct Lfs *lfsPtr, 
  34.         ClientData clientData, Boolean deleteBlock));
  35.  
  36. #endif /* _LFSDESCINT */
  37.  
  38.